home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / http_trace.nasl < prev    next >
Text File  |  2005-03-31  |  5KB  |  174 lines

  1. #
  2. # (C) 2002 Michel Arboi <arboi@alussinan.org>
  3. #
  4. # HTTP/1.1 is defined by RFC 2068
  5. #
  6. # Check for proxy on the way (transparent or reverse?!)
  7. #
  8.  
  9. if(description)
  10. {
  11.  script_id(11040);
  12.  script_version ("$Revision: 1.12 $");
  13.  
  14.  name["english"] = "HTTP TRACE";
  15.  name["francais"] = "TRACE HTTP";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. Transparent or reverse HTTP proxies may be implement on some sites.
  20.  
  21. Risk factor : None";
  22.  
  23.  
  24.  desc["francais"] = "
  25. Des proxys HTTP transparent ou 'reverse' sont susceptibles d'Ωtre 
  26. installΘs sur certains sites.
  27.  
  28. Risque: aucun";
  29.  
  30.  
  31.  script_description(english:desc["english"], francais:desc["francais"]);
  32.  
  33.  summary["english"] = "Look for an HTTP proxy on the way";
  34.  summary["francais"] = "Cherche un proxy HTTP sur le chemin";
  35.  
  36.  script_summary(english:summary["english"], francais:summary["francais"]);
  37.  
  38.  script_category(ACT_GATHER_INFO);
  39.  
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi",
  42.         francais:"Ce script est Copyright (C) 2002 Michel Arboi");
  43.  family["english"] = "General";
  44.  script_family(english:family["english"]);
  45.  # script_dependencie("find_service.nes", "httpver.nasl");
  46.  script_dependencie("find_service.nes");
  47.  script_require_ports("Services/www", 80);
  48.  exit(0);
  49. }
  50.  
  51. #
  52. include("http_func.inc");
  53.  
  54. port = get_http_port(default:80);
  55.  
  56. if (!get_port_state(port)) exit(0);
  57.  
  58. soc = open_sock_tcp(port);
  59. if (!soc) exit(0);
  60.  
  61. req = http_get(port: port, item: "/");
  62. send(socket: soc, data: req);
  63. heads = http_recv_headers(soc);
  64. via = egrep(pattern: "^Via: ", string: heads);
  65. trace="";
  66. if (via)
  67. {
  68.   # display(via);
  69.   via=ereg_replace(string: via, pattern: "^Via: *", replace:"");
  70.   via=via-string("\r\n");
  71.   while(via)
  72.   {
  73.     # display("Via=", via, "\n");
  74.     proxy = ereg_replace(string:via, pattern: " *([^,]*),?.*", replace: "\1");
  75.     via = ereg_replace(string: via, pattern: "([^,]*)(, *)?(.*)", replace: "\3");
  76.     # display(string("Proxy=", proxy, " - Via=", via, "\n"));
  77.     proto = ereg_replace(string:proxy, 
  78.         pattern:"^([a-zA-Z0-9_-]*/?[0-9.]+) +.*",
  79.         replace: "\1");
  80.     line = ereg_replace(string:proxy, 
  81.         pattern:"^([a-zA-Z0-9_-]*/?[0-9.]+) *(.*)",
  82.         replace: "\2");
  83.     # display(string("Proto=", proto, "\nLine=", line, "\n"));
  84.     if (egrep(pattern:"^[0-9]+", string: proto))
  85.       proto = "HTTP/" + proto;
  86.     trace = trace + proto;
  87.     l = strlen(proto);
  88.     for (i= l;i < 12; i=i+1) trace=trace+" ";
  89.     trace=string(trace, " ", line, "\n");
  90.   }
  91. }
  92.  
  93. close(soc);
  94.  
  95. if (trace)
  96.   security_note(port: port, data: string("The GET method revealed those proxies on the way to this web server :\n", trace));
  97. else if (egrep(pattern: "^X-Cache:", string: heads))
  98. {
  99.   p = ereg_replace(pattern:'^X-Cache: *[A-Z]+ +from +([^ \t\r\n]+)[ \t\r\n]+',
  100.     string: heads, replace: "\1");
  101.   r = 'There might be a caching proxy on the way to this web server';
  102.   if (p != heads) r = strcat(r, ':\n', p);
  103.   security_note(port: port, data: r);
  104. }
  105.  
  106. exit(0); # broken at this time
  107. #
  108. ver=get_kb_item(string("http/", port));
  109. if ((ver == "10") || (ver == "09")) exit(0);    # No TRACE in HTTP/1.0
  110.  
  111. n=0;
  112. for (i=0; i<99;i=i+1)
  113. {
  114.   soc = open_sock_tcp(port);
  115.   if (soc)
  116.   {
  117.     req=string("TRACE / HTTP/1.1\r\nHost: ", get_host_name(), 
  118.     "\r\nUser-Agent: Nessus\r\nMax-Forwards: ", i,
  119.     "\r\n\r\n");
  120.  
  121.     send(socket: soc, data: req);
  122.     buf = http_recv_headers(soc);
  123.     #
  124.     via = egrep(pattern: "^Via: ", string: buf);
  125.     if (via)
  126.     {
  127.       via = ereg_replace(string: via, pattern: "^Via: *", replace:"");
  128.       viaL[i] = via - string("\r\n");
  129. # display(string("V[", i, "]=", viaL[i], "\n"));
  130.     }
  131.     else
  132.       viaL[i] = string("?");
  133.     #
  134.     if (egrep(string: buf, pattern: "^HTTP/.* 200 "))
  135.     {
  136.       buf2 = recv_line(socket: soc, length: 2048);
  137.       # The proxy is supposed to send back the request it got. 
  138.       # i.e. "TRACE / HTTP/1.1"
  139.       # However, NetCache appliance change it to "TRACE http://srv HTTP/1.1"
  140.       if (egrep(pattern: "^TRACE (/|http://.*) HTTP/1.1", string: buf2))
  141.       {
  142.         srv = egrep(pattern: "^Server: ", string: buf);
  143.         if (srv)
  144.         {
  145.           srv = ereg_replace(string: srv, pattern: "^Server: *", replace:"");
  146.           srvL[i+1] = srv - string("\r\n");
  147. # display(string("S[", i+1, "]=", srvL[i+1], "\n"));
  148.         }
  149.         else
  150.           srvL[i+1] = string("?");
  151.         n=n+1;
  152.       }
  153.     }
  154.     else
  155.       i=9999;
  156. #
  157.     close(soc);
  158.   }
  159.   else
  160.     i = 9999;
  161. }
  162.   
  163. trace="";
  164. for (i = 1; i <= n; i = i+1)
  165. {
  166.   trace=string(trace, viaL[i]," - ", srvL[i], "\n");
  167. }
  168.  
  169. if (n > 0)
  170.   security_note(port:port, protocol:"tcp",
  171.     data:string("The TRACE method revealed ", n, 
  172.     " proxy(s) between us and the web server :\n",
  173.     trace,"\nRisk factor : None"));
  174.